home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_11 / gilhool2 / inifile.c < prev    next >
C/C++ Source or Header  |  1995-10-10  |  700b  |  31 lines

  1. #include "pulse.h"
  2. /*
  3.     Routine:    GetIni, PutIni
  4.     Called By:  various
  5.     Usage:      These routines store and fetch initialization info
  6. */
  7. void GetIni()
  8. {
  9.     nXPos      = GetProfileInt("Pulse", "XPos",    100);
  10.     nYPos      = GetProfileInt("Pulse", "YPos",    100);
  11.     Mode       = GetProfileInt("Pulse", "Mode",    100);
  12. }
  13.  
  14. void PutIni()
  15. {
  16.     char    szBuffer[20];
  17.  
  18. /*
  19. Screen Position
  20. */
  21.     wsprintf(szBuffer, "%d", nXPos);
  22.     WriteProfileString("Pulse", "XPos", szBuffer);
  23.     wsprintf(szBuffer, "%d", nYPos);
  24.     WriteProfileString("Pulse", "YPos", szBuffer);
  25. /*
  26. last active display option
  27. */
  28.     wsprintf(szBuffer, "%d", Mode);
  29.     WriteProfileString("Pulse", "Mode", szBuffer);
  30. }
  31.